home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / eu1_00.zip / WC.MAN < prev    next >
Text File  |  1980-01-01  |  2KB  |  55 lines

  1.  
  2.         Eldar Utilities Ver.1.00
  3.  
  4.             Word Counter
  5.  
  6.         (C) Eldar Software 1990
  7.  
  8.     WC (Word Count) utility counts the number of words, numbers,
  9. alphanumeric words, different words, bytes and lines in text files.
  10. It is also creates a dictionary for a text file. The dictionary is
  11. printed in alphabetical order one word per line. WC works as a filter,
  12. it reads a text file from standard input and outputs the results
  13. and dictionary. If you don't need in dictionary use key 's' -
  14. "suppress dictionary". The simplest way to use wc is
  15.  
  16.     wc <text-file
  17.  
  18.     To avoid a dictionary generation type:
  19.  
  20.     wc s <text-file
  21.  
  22.     To save result of work in a file:
  23.  
  24.     wc <text-file >file-for-results
  25.  
  26.     What can be obtained from the information of WC ?
  27.  
  28.     1.You can check the level of your language. That is not
  29. the grammatical correctness or spellchecking. One of the main
  30. characteristics of text is the volume of dictionary, which can
  31. be easily determined by WC. In fiction a large dictionary means
  32. that your language is various and rich, and that is better that
  33. a small dictionary. If you write the documentation, manuals etc.
  34. the situation changes dramatically. Nobody interested how rich your
  35. language is, the aim of any documentation is to be so clear, that
  36. any one after reading it could use the program, mechanizm etc.
  37. which it describes. The good dictionary for manual is 1-2 thousands
  38. of words. That is specially important when writing manuals for very
  39. wide and maybe international readers.
  40.  
  41.     2.Programmers and documentation writers could estimate their
  42. own productiveness for day or week basing on the number of lines and
  43. words. These characteristics are more informative than volume in
  44. kilobytes. Of course there is no sense to do that every day, but
  45. it is interesting to do that time by time to see your own abilities.
  46. This method have at least three advantages: it is very
  47. easy to use and don't take much time; it allows you to judge
  48. about your level; and it can not be used by your boss.
  49.  
  50.     3.For large texts it can be used for quick spellcheking.
  51. It is much easy to check a 1000 words dictionary than 50-60 Kb text,
  52. at least on the last stages when text is practically correct.
  53.  
  54.     Of course that is not all, what you can get from this information.
  55.